home *** CD-ROM | disk | FTP | other *** search
/ InfoMagic Internet Tools 1993 July / Internet Tools.iso / RockRidge / mail / sendmail / sendmail-5.65c+IDA-1.4.4.1 / binmail / RCS / pathnames.h,v < prev    next >
Encoding:
Text File  |  1991-06-25  |  2.6 KB  |  129 lines

  1. head    5.1;
  2. branch    5.1.0;
  3. access;
  4. symbols
  5.     RELEASE:5.1.0.3
  6.     UICSO:5.1.0
  7.     VANILLA:5.1;
  8. locks; strict;
  9. comment    @ * @;
  10.  
  11.  
  12. 5.1
  13. date    90.06.25.09.45.16;    author paul;    state Exp;
  14. branches
  15.     5.1.0.1;
  16. next    ;
  17.  
  18. 5.1.0.1
  19. date    90.06.25.09.46.09;    author paul;    state Exp;
  20. branches;
  21. next    5.1.0.2;
  22.  
  23. 5.1.0.2
  24. date    90.11.30.14.22.03;    author paul;    state Exp;
  25. branches;
  26. next    5.1.0.3;
  27.  
  28. 5.1.0.3
  29. date    91.06.25.23.57.22;    author paul;    state Exp;
  30. branches;
  31. next    ;
  32.  
  33.  
  34. desc
  35. @@
  36.  
  37.  
  38.  
  39. 5.1
  40. log
  41. @*** empty log message ***
  42. @
  43. text
  44. @/*-
  45.  * Copyright (c) 1990 The Regents of the University of California.
  46.  * All rights reserved.
  47.  *
  48.  * Redistribution and use in source and binary forms are permitted provided
  49.  * that: (1) source distributions retain this entire copyright notice and
  50.  * comment, and (2) distributions including binaries display the following
  51.  * acknowledgement:  ``This product includes software developed by the
  52.  * University of California, Berkeley and its contributors'' in the
  53.  * documentation or other materials provided with the distribution and in
  54.  * all advertising materials mentioning features or use of this software.
  55.  * Neither the name of the University nor the names of its contributors may
  56.  * be used to endorse or promote products derived from this software without
  57.  * specific prior written permission.
  58.  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
  59.  * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
  60.  * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  61.  *
  62.  *    @@(#)pathnames.h    5.1 (Berkeley) 4/29/90
  63.  */
  64.  
  65. #include <paths.h>
  66.  
  67. #undef _PATH_TMP
  68. #define _PATH_TMP    "/tmp/maXXXXX"
  69. #define _PATH_MAILDIR    "/usr/spool/mail/"
  70. @
  71.  
  72.  
  73. 5.1.0.1
  74. log
  75. @Added HP-UX patch from Andy Litton.
  76. @
  77. text
  78. @a21 4
  79. #if defined(hpux)
  80. #define _PATH_SENDMAIL    "/usr/lib/sendmail"
  81. #include "flock.h"
  82. #else
  83. a24 1
  84. #endif /* hpux */
  85. @
  86.  
  87.  
  88. 5.1.0.2
  89. log
  90. @Date:    Fri, 23 Nov 90 14:44:41 +1300
  91. To:      "Paul Pomes, UofIllinois-CSO" <paul@@uxc.cso.uiuc.edu>
  92. From:    Andy.Linton@@comp.vuw.ac.nz
  93. Subject: locking in /bin/mail (with the details (:-))
  94. X-Mailer: XMH (using mh 6.7) 
  95.  
  96. We use the LCK_BEL locking in 'mh' as we have the spool directory mounted via
  97. NFS. The flock (real or emulated) is not good enough and results in races
  98. which unfortunately end up in "dead heats" at times.
  99. @
  100. text
  101. @d22 2
  102. a23 1
  103. #if defined(__hpux)
  104. d25 2
  105. a26 1
  106. #endif /* __hpux */
  107. d28 2
  108. a29 1
  109. #define _PATH_SENDMAIL    "/usr/lib/sendmail"
  110. @
  111.  
  112.  
  113. 5.1.0.3
  114. log
  115. @4.3 BSD-reno (4.4?) pathnames.
  116. @
  117. text
  118. @a24 1
  119. #include <sys/param.h>
  120. a25 5
  121. #ifdef BSD4_4
  122. #define _PATH_SENDMAIL    "/usr/sbin/sendmail"
  123. #define _PATH_TMP    "/tmp/maXXXXX"
  124. #define _PATH_MAILDIR    "/var/mail/"
  125. #else /* !BSD4_4 */
  126. a28 1
  127. #endif /* BSD4_4 */
  128. @
  129.